{
GtkStack *stack = GTK_STACK (widget);
GtkStackPrivate *priv = gtk_stack_get_instance_private (stack);
- GtkStyleContext *context;
- GtkAllocation allocation;
cairo_t *pattern_cr;
- context = gtk_widget_get_style_context (widget);
- gtk_widget_get_allocation (widget, &allocation);
- gtk_render_background (context, cr, 0, 0, allocation.width, allocation.height);
-
if (priv->visible_child)
{
if (priv->transition_pos < 1.0)
cr);
}
- return GTK_WIDGET_CLASS (gtk_stack_parent_class)->draw (widget, cr);
+ return TRUE;
}
static void